home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Shareware / Beyond Compare 3.0.10 / BCompareSetup.exe / {app} / BCompare.exe / 0 / RCDATA / TDATACOLHANDLINGDIALOG / TDATACOLHANDLINGDIALOG.txt
Text File  |  2008-11-03  |  3KB  |  170 lines

  1. inherited DataColHandlingDialog: TDataColHandlingDialog
  2.   Left = 491
  3.   Top = 147
  4.   Caption = 'Column Handling'
  5.   ClientHeight = 281
  6.   ClientWidth = 441
  7.   OnCreate = FormCreate
  8.   PixelsPerInch = 96
  9.   TextHeight = 13
  10.   object NameLbl: TUiLabel
  11.     Left = 8
  12.     Top = 8
  13.     Height = 13
  14.     Caption = 'Name:'
  15.     FocusControl = NameEdit
  16.   end
  17.   object ValTypeLbl: TUiLabel
  18.     Left = 8
  19.     Top = 56
  20.     Height = 13
  21.     Caption = 'Type:'
  22.     FocusControl = ValTypeEdit
  23.   end
  24.   object NameEdit: TUiEdit
  25.     Left = 8
  26.     Top = 24
  27.     Width = 209
  28.     Height = 21
  29.     TabOrder = 0
  30.     OnChange = SomethingChangedClick
  31.   end
  32.   object IsKeyEdit: TUiCheckBox
  33.     Left = 224
  34.     Top = 8
  35.     Height = 17
  36.     Caption = 'Key'
  37.     TabOrder = 1
  38.     OnClick = SomethingChangedClick
  39.   end
  40.   object UseDefaultEdit: TUiCheckBox
  41.     Left = 224
  42.     Top = 28
  43.     Height = 17
  44.     Caption = 'Use default'
  45.     TabOrder = 2
  46.     OnClick = UseDefaultClick
  47.   end
  48.   object ValTypeEdit: TUiComboBox
  49.     Left = 8
  50.     Top = 72
  51.     Width = 209
  52.     Height = 21
  53.     Style = csDropDownList
  54.     ItemHeight = 13
  55.     TabOrder = 3
  56.     OnChange = SomethingChangedClick
  57.     Items.WideStrings = (
  58.       'Detected'
  59.       'Boolean'
  60.       'Date'
  61.       'Numeric'
  62.       'Text')
  63.   end
  64.   object InsigEdit: TUiCheckBox
  65.     Left = 8
  66.     Top = 104
  67.     Height = 17
  68.     Caption = 'Unimportant'
  69.     TabOrder = 4
  70.     OnClick = SomethingChangedClick
  71.   end
  72.   object DateTimeGroupBox: TUiGroupBox
  73.     Left = 224
  74.     Top = 64
  75.     Width = 209
  76.     Height = 49
  77.     Caption = 'Date tolerance'
  78.     TabOrder = 5
  79.     object DateTimeToleranceLbl: TUiLabel
  80.       Left = 80
  81.       Top = 22
  82.       Height = 13
  83.       Caption = 'days'
  84.       FocusControl = DateTimeToleranceEdit
  85.     end
  86.     object DateTimeToleranceEdit: TUiSpinEdit
  87.       Left = 8
  88.       Top = 18
  89.       Width = 65
  90.       Height = 21
  91.       TabOrder = 0
  92.       OnChange = SomethingChangedClick
  93.     end
  94.     object DateTimeToleranceKindEdit: TUiComboBox
  95.       Left = 80
  96.       Top = 18
  97.       Width = 121
  98.       Height = 21
  99.       Style = csDropDownList
  100.       ItemHeight = 13
  101.       TabOrder = 1
  102.       OnChange = SomethingChangedClick
  103.       Items.WideStrings = (
  104.         'seconds'
  105.         'minutes'
  106.         'hours'
  107.         'days')
  108.     end
  109.   end
  110.   object FloatGroupBox: TUiGroupBox
  111.     Left = 224
  112.     Top = 120
  113.     Width = 209
  114.     Height = 49
  115.     Caption = 'Numeric tolerance'
  116.     TabOrder = 6
  117.     object FloatToleranceEdit: TUiNumEdit
  118.       Left = 8
  119.       Top = 18
  120.       Width = 121
  121.       Height = 21
  122.       Kind = numFloat
  123.       TabOrder = 0
  124.       OnChange = SomethingChangedClick
  125.     end
  126.   end
  127.   object StrGroupBox: TUiGroupBox
  128.     Left = 224
  129.     Top = 176
  130.     Width = 209
  131.     Height = 65
  132.     Caption = 'Text important, except for'
  133.     TabOrder = 7
  134.     object StrCaseInsigEdit: TUiCheckBox
  135.       Left = 8
  136.       Top = 20
  137.       Height = 17
  138.       Caption = 'Character case (ABC = abc)'
  139.       TabOrder = 0
  140.       OnClick = SomethingChangedClick
  141.     end
  142.     object StrWSInsigEdit: TUiCheckBox
  143.       Left = 8
  144.       Top = 40
  145.       Height = 17
  146.       Caption = 'Whitespace'
  147.       TabOrder = 1
  148.       OnClick = SomethingChangedClick
  149.     end
  150.   end
  151.   object OkBtn: TUiButton
  152.     Left = 280
  153.     Top = 248
  154.     Caption = 'OK'
  155.     Default = True
  156.     ModalResult = 1
  157.     TabOrder = 8
  158.     AutoSize = asRight
  159.   end
  160.   object CancelBtn: TUiButton
  161.     Left = 360
  162.     Top = 248
  163.     Cancel = True
  164.     Caption = 'Cancel'
  165.     ModalResult = 2
  166.     TabOrder = 9
  167.     AutoSize = asRight
  168.   end
  169. end
  170.